home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 16 / AMIGAplus Sonderheft 16 (1998)(ICP)(DE)[!].iso / pd / anwendungen / ispell-3.1.18bin / interfaces / guispell-1.1 / libraries.h < prev    next >
C/C++ Source or Header  |  1995-09-21  |  591b  |  33 lines

  1. #ifndef INCLUDE_LIBS_STRUCT
  2. extern
  3. #endif
  4. struct
  5. {
  6.   char *name;
  7.   ULONG version;
  8.   APTR base;
  9. } libs[]
  10. #ifdef INCLUDE_LIBS_STRUCT
  11. =
  12. {
  13.   {"exec.library", 37, 0},
  14.   {"dos.library", 37, 0},
  15.   {"gadtools.library", 37, 0},
  16.   {"intuition.library", 37, 0},
  17.   {"iffparse.library", 37, 0},
  18.   {"rexxsyslib.library", 36, 0},
  19.   {0, 0, 0},
  20. }
  21. #endif
  22. ;
  23.  
  24. #define ExecBase libs[0].base
  25. #define DOSBase libs[1].base
  26. #define GadToolsBase libs[2].base
  27. #define IntuitionBase libs[3].base
  28. #define IFFParseBase libs[4].base
  29. #define RexxSysBase libs[5].base
  30.  
  31. void OpenLibraries (void);
  32. void CloseLibraries (void);
  33.